Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #42

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 9, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
FluentValidation (source) 11.4.0 -> 11.11.0 age adoption passing confidence nuget minor
Pulumi.AzureAD (source) 5.32.0 -> 5.53.5 age adoption passing confidence nuget minor
Pulumi.AzureNative (source) 1.90.0 -> 1.104.0 age adoption passing confidence nuget minor
Pulumi.Kubernetes (source) 3.23.1 -> 3.30.2 age adoption passing confidence nuget minor
Pulumi.Random (source) 4.8.2 -> 4.16.8 age adoption passing confidence nuget minor
cake.tool (source) 3.0.0 -> 3.2.0 age adoption passing confidence nuget minor
dotnet-sdk 7.0.101 -> 7.0.410 age adoption passing confidence dotnet-sdk patch
minver-cli 4.2.0 -> 4.3.0 age adoption passing confidence nuget minor

Release Notes

JeremySkinner/fluentvalidation (FluentValidation)

v11.11.0

Compare Source

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.11.0
  • Add additional overload of WithState that takes a context (#​2276)
Changes in 11.10.0
  • Add WhereAsync as conterpart to Where on collection rules (#​2240)
  • Create IEnumValidator to expose the targeted Enum type of EnumValidator (#​2244)
  • Add Romansh language translations (#​2239)
Changes in 11.9.2
  • ScalePrecisionValidator error message clarification (#​2211)
Changes in 11.9.1
  • Fix issue with CascadeMode on child validators (#​2207)
Changes in 11.9.0
  • Fix memory leak in NotEmptyValidator/EmptyValidator (#​2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#​2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#​2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#​2182)
  • Add builds for .net 8
Changes in 11.8.1
  • Fix unintentional behavioural changes in introduced in the previous release as part of #​2158
Changes in 11.8.0
  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#​2114)
  • Fix Serbian translation of LengthValidator (#​2147)
  • Fix chinese culture codes (#​2151)
  • Add Khmer translations (#​2155)
  • Various performance improvements (#​2158)
  • Fix ChildRules with class hierarchies (#​2165)
Changes in 11.7.1
  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#​2125)
Changes in 11.7.0
  • Add additional constructor for combining multiple ValidationResult instances (#​2125)
  • Add PropertyPath placeholder (#​2134)
  • Fix Brazilian Portuguese translation (#​2131)
Changes in 11.6.0
  • Add OnFailurecCreated callback in ValidatorOptions.Global (#​2120)
  • Fix typo in Russian localization (#​2102)
  • Add Tajik language (#​2108)
  • Fixed some typos in Validator Extension docblocks (#​2118)
Changes in 11.5.2
  • Resolve issue with ruleset propagation for multiple levels of child rules (#​2097)
Changes in 11.5.1
  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #​2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #​2072 for migration steps)
Changes in 11.5.0
  • MemberNameValidatorSelector now supports wildcard indexes in property paths (#​2056)
  • Added overload of TestValidateAsync that accepts a context (#​2052)
  • Minor optimization to regex validator (#​2035)
  • Added Kazakh translations (#​2036)
  • Added Catalan translations and updated Spanish translations (#​2050)
  • Updates to Uzbek Latin and Cyrillic translations (#​2040/#​2041/#​2045)
  • Updates to Italian translations (#​2039)
  • Updates to French translations (#​2065)
Changes in 11.4.0
  • Deprecate ScalePrecision validator and introduce PrecisionScale validator as its replacement (#​2030)
Changes in 11.3.0
  • Add a net7 build
  • Annotate string parameters with StringSyntaxAttribute.Regex in net7 builds (#​1957)
  • Fixes to SourceLink integration (#​2019)
  • Add Uzbek Latin and Cyrillic languages (#​2013)
  • Updates to Danish language (#​2012)
Changes in 11.2.2
  • MemberNameValidatorSelector should make use of PropertyNameResolver when parsing expressions (#​2003)
Changes in 11.2.1
  • Fix test helper Only() not taking into account parent-level unmatched failures (#​1986)
Changes in 11.2.0
  • Resolve issue with unexpected results when with nested Include calls with the MemberNameValidatorSelector (#​1989)
  • Add a new Selector Factory for the Composite Selector (#​1988)
Changes in 11.1.1
  • Fix issue with incorrect rulesets being executed in a child validator when combined with ChildRules (#​1981)
  • Bulgarian translations of default messages (#​1973)
Changes in 11.1.0
  • Added a ToDictionary method to ValidationResult (particularly useful when working with Minimal APIs)-
  • MVC auto validation: Deprecated Implicit validation of child properties (#​1960)
  • MVC auto validation: Deprecated Implicit validation of root collection elements (#​1960)
  • Deprecated InjectValidator (#​1960)
  • Deprecated IValidatorFactory and ServiceProviderValidatorFactory (#​1961)
  • Introduce services.AddFluentValidationAutoValidation() and services.AddFluentValidationClientsideAdapters() as replacements for services.AddFluentValidation() (#​1965)
  • Remove duplication between sync and async validation in the internal model.
Changes in 11.0.3
  • Fix AsyncValidatorInvokedSynchronouslyException being incorrectly thrown when the top-level When method with RuleForEach, even when invoked asynchronously (#​1955)
Changes in 11.0.2
  • Child validator contexts now contain a reference to their parent context (#​1945)
  • Support deserialization of ValidationResult using System.Text.Json (#​1928)
Changes in 11.0.1
  • Fix regression in the Test Helper affecting the With* and Without* assertion methods (#​1937)
Changes in 11.0
  • Throw exceptions when async validator is invoked synchronously (#​1705)
  • Removal deprecated OnFailure/OnAnyFailure callbacks.
  • Remove deprecated RunDefaultMvcValidationAfterFluentValidationExecutes option from ASP.NET integration.
  • Remove deprecated Options property from RuleComponent.
  • Remove deprecated TestHelper methods.
  • Remove non-generic PropertyValidator backwards compatibility layer.
  • Add method Only() to the test helper asserting that no other validation errors were raised.
  • Ensure property covariance is properly handled throughout the internal model (#​1713)
Downloads

Binaries can be downloaded from nuget:

v11.10.0

Compare Source

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.10.0
  • Add WhereAsync as conterpart to Where on collection rules (#​2240)
  • Create IEnumValidator to expose the targeted Enum type of EnumValidator (#​2244)
  • Add Romansh language translations (#​2239)
Changes in 11.9.2
  • ScalePrecisionValidator error message clarification (#​2211)
Changes in 11.9.1
  • Fix issue with CascadeMode on child validators (#​2207)
Changes in 11.9.0
  • Fix memory leak in NotEmptyValidator/EmptyValidator (#​2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#​2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#​2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#​2182)
  • Add builds for .net 8
Changes in 11.8.1
  • Fix unintentional behavioural changes in introduced in the previous release as part of #​2158
Changes in 11.8.0
  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#​2114)
  • Fix Serbian translation of LengthValidator (#​2147)
  • Fix chinese culture codes (#​2151)
  • Add Khmer translations (#​2155)
  • Various performance improvements (#​2158)
  • Fix ChildRules with class hierarchies (#​2165)
Changes in 11.7.1
  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#​2125)
Changes in 11.7.0
  • Add additional constructor for combining multiple ValidationResult instances (#​2125)
  • Add PropertyPath placeholder (#​2134)
  • Fix Brazilian Portuguese translation (#​2131)
Changes in 11.6.0
  • Add OnFailurecCreated callback in ValidatorOptions.Global (#​2120)
  • Fix typo in Russian localization (#​2102)
  • Add Tajik language (#​2108)
  • Fixed some typos in Validator Extension docblocks (#​2118)
Changes in 11.5.2
  • Resolve issue with ruleset propagation for multiple levels of child rules (#​2097)
Changes in 11.5.1
  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #​2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #​2072 for migration steps)
Changes in 11.5.0
  • MemberNameValidatorSelector now supports wildcard indexes in property paths (#​2056)
  • Added overload of TestValidateAsync that accepts a context (#​2052)
  • Minor optimization to regex validator (#​2035)
  • Added Kazakh translations (#​2036)
  • Added Catalan translations and updated Spanish translations (#​2050)
  • Updates to Uzbek Latin and Cyrillic translations (#​2040/#​2041/#​2045)
  • Updates to Italian translations (#​2039)
  • Updates to French translations (#​2065)
Changes in 11.4.0
  • Deprecate ScalePrecision validator and introduce PrecisionScale validator as its replacement (#​2030)
Changes in 11.3.0
  • Add a net7 build
  • Annotate string parameters with StringSyntaxAttribute.Regex in net7 builds (#​1957)
  • Fixes to SourceLink integration (#​2019)
  • Add Uzbek Latin and Cyrillic languages (#​2013)
  • Updates to Danish language (#​2012)
Changes in 11.2.2
  • MemberNameValidatorSelector should make use of PropertyNameResolver when parsing expressions (#​2003)
Changes in 11.2.1
  • Fix test helper Only() not taking into account parent-level unmatched failures (#​1986)
Changes in 11.2.0
  • Resolve issue with unexpected results when with nested Include calls with the MemberNameValidatorSelector (#​1989)
  • Add a new Selector Factory for the Composite Selector (#​1988)
Changes in 11.1.1
  • Fix issue with incorrect rulesets being executed in a child validator when combined with ChildRules (#​1981)
  • Bulgarian translations of default messages (#​1973)
Changes in 11.1.0
  • Added a ToDictionary method to ValidationResult (particularly useful when working with Minimal APIs)-
  • MVC auto validation: Deprecated Implicit validation of child properties (#​1960)
  • MVC auto validation: Deprecated Implicit validation of root collection elements (#​1960)
  • Deprecated InjectValidator (#​1960)
  • Deprecated IValidatorFactory and ServiceProviderValidatorFactory (#​1961)
  • Introduce services.AddFluentValidationAutoValidation() and services.AddFluentValidationClientsideAdapters() as replacements for services.AddFluentValidation() (#​1965)
  • Remove duplication between sync and async validation in the internal model.
Changes in 11.0.3
  • Fix AsyncValidatorInvokedSynchronouslyException being incorrectly thrown when the top-level When method with RuleForEach, even when invoked asynchronously (#​1955)
Changes in 11.0.2
  • Child validator contexts now contain a reference to their parent context (#​1945)
  • Support deserialization of ValidationResult using System.Text.Json (#​1928)
Changes in 11.0.1
  • Fix regression in the Test Helper affecting the With* and Without* assertion methods (#​1937)
Changes in 11.0
  • Throw exceptions when async validator is invoked synchronously (#​1705)
  • Removal deprecated OnFailure/OnAnyFailure callbacks.
  • Remove deprecated RunDefaultMvcValidationAfterFluentValidationExecutes option from ASP.NET integration.
  • Remove deprecated Options property from RuleComponent.
  • Remove deprecated TestHelper methods.
  • Remove non-generic PropertyValidator backwards compatibility layer.
  • Add method Only() to the test helper asserting that no other validation errors were raised.
  • Ensure property covariance is properly handled throughout the internal model (#​1713)
Downloads

Binaries can be downloaded from nuget:

v11.9.2

Compare Source

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.9.2

  • ScalePrecisionValidator error message clarification (#​2211)

Changes in 11.9.1

  • Fix issue with CascadeMode on child validators (#​2207)

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#​2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#​2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#​2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#​2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #​2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#​2114)
  • Fix Serbian translation of LengthValidator (#​2147)
  • Fix chinese culture codes (#​2151)
  • Add Khmer translations (#​2155)
  • Various performance improvements (#​2158)
  • Fix ChildRules with class hierarchies (#​2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#​2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#​2125)
  • Add PropertyPath placeholder (#​2134)
  • Fix Brazilian Portuguese translation (#​2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#​2120)
  • Fix typo in Russian localization (#​2102)
  • Add Tajik language (#​2108)
  • Fixed some typos in Validator Extension docblocks (#​2118)

Changes in 11.5.2

  • Resolve issue with ruleset propagation for multiple levels of child rules (#​2097)

Changes in 11.5.1

  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #​2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #​2072 for migration steps)

Changes in 11.5.0

  • MemberNameValidatorSelector now supports wildcard indexes in property paths (#​2056)
  • Added overload of TestValidateAsync that accepts a context (#​2052)
  • Minor optimization to regex validator (#​2035)
  • Added Kazakh translations (#​2036)
  • Added Catalan translations and updated Spanish translations (#​2050)
  • Updates to Uzbek Latin and Cyrillic translations (#​2040/#​2041/#​2045)
  • Updates to Italian translations (#​2039)
  • Updates to French translations (#​2065)

Changes in 11.4.0

  • Deprecate ScalePrecision validator and introduce PrecisionScale validator as its replacement (#​2030)

Changes in 11.3.0

  • Add a net7 build
  • Annotate string parameters with StringSyntaxAttribute.Regex in net7 builds (#​1957)
  • Fixes to SourceLink integration (#​2019)
  • Add Uzbek Latin and Cyrillic languages (#​2013)
  • Updates to Danish language (#​2012)

Changes in 11.2.2

  • MemberNameValidatorSelector should make use of PropertyNameResolver when parsing expressions (#​2003)

Changes in 11.2.1

  • Fix test helper Only() not taking into account parent-level unmatched failures (#​1986)

Changes in 11.2.0

  • Resolve issue with unexpected results when with nested Include calls with the MemberNameValidatorSelector (#​1989)
  • Add a new Selector Factory for the Composite Selector (#​1988)

Changes in 11.1.1

  • Fix issue with incorrect rulesets being executed in a child validator when combined with ChildRules (#​1981)
  • Bulgarian translations of default messages (#​1973)

Changes in 11.1.0

  • Added a ToDictionary method to ValidationResult (particularly useful when working with Minimal APIs)-
  • MVC auto validation: Deprecated Implicit validation of child properties (#​1960)
  • MVC auto validation: Deprecated Implicit validation of root collection elements (#​1960)
  • Deprecated InjectValidator (#​1960)
  • Deprecated IValidatorFactory and ServiceProviderValidatorFactory (#​1961)
  • Introduce services.AddFluentValidationAutoValidation() and services.AddFluentValidationClientsideAdapters() as replacements for services.AddFluentValidation() (#​1965)
  • Remove duplication between sync and async validation in the internal model.

Changes in 11.0.3

  • Fix AsyncValidatorInvokedSynchronouslyException being incorrectly thrown when the top-level When method with RuleForEach, even when invoked asynchronously (#​1955)

Changes in 11.0.2

  • Child validator contexts now contain a reference to their parent context (#​1945)
  • Support deserialization of ValidationResult using System.Text.Json (#​1928)

Changes in 11.0.1

  • Fix regression in the Test Helper affecting the With* and Without* assertion methods (#​1937)

Changes in 11.0

  • Throw exceptions when async validator is invoked synchronously (#​1705)
  • Removal deprecated OnFailure/OnAnyFailure callbacks.
  • Remove deprecated RunDefaultMvcValidationAfterFluentValidationExecutes option from ASP.NET integration.
  • Remove deprecated Options property from RuleComponent.
  • Remove deprecated TestHelper methods.
  • Remove non-generic PropertyValidator backwards compatibility layer.
  • Add method Only() to the test helper asserting that no other validation errors were raised.
  • Ensure property covariance is properly handled throughout the internal model (#​1713)

Downloads

Binaries can be downloaded from nuget:

v11.9.1

Compare Source

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.9.1

Fix issue with CascadeMode on child validators (#​2207)

Changes in 11.9.0
  • Fix memory leak in NotEmptyValidator/EmptyValidator (#​2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#​2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#​2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#​2182)
  • Add builds for .net 8
Changes in 11.8.1
  • Fix unintentional behavioural changes in introduced in the previous release as part of #​2158
Changes in 11.8.0
  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#​2114)
  • Fix Serbian translation of LengthValidator (#​2147)
  • Fix chinese culture codes (#​2151)
  • Add Khmer translations (#​2155)
  • Various performance improvements (#​2158)
  • Fix ChildRules with class hierarchies (#​2165)
Changes in 11.7.1
  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#​2125)
Changes in 11.7.0
  • Add additional constructor for combining multiple ValidationResult instances (#​2125)
  • Add PropertyPath placeholder (#​2134)
  • Fix Brazilian Portuguese translation (#​2131)
Changes in 11.6.0
  • Add OnFailurecCreated callback in ValidatorOptions.Global (#​2120)
  • Fix typo in Russian localization (#​2102)
  • Add Tajik language (#​2108)
  • Fixed some typos in Validator Extension docblocks (#​2118)
Changes in 11.5.2
  • Resolve issue with ruleset propagation for multiple levels of child rules (#​2097)
Changes in 11.5.1
  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #​2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #​2072 for migration steps)
Changes in 11.5.0
  • MemberNameValidatorSelector now supports wildcard indexes in property paths (#​2056)
  • Added overload of TestValidateAsync that accepts a context (#​2052)
  • Minor optimization to regex validator (#​2035)
  • Added Kazakh translations (#​2036)
  • Added Catalan translations and updated Spanish translations (#​2050)
  • Updates to Uzbek Latin and Cyrillic translations (#​2040/#​2041/#​2045)
  • Updates to Italian translations (#​2039)
  • Updates to French translations (#​2065)
Changes in 11.4.0
  • Deprecate ScalePrecision validator and introduce PrecisionScale validator as its replacement (#​2030)
Changes in 11.3.0
  • Add a net7 build
  • Annotate string parameters with StringSyntaxAttribute.Regex in net7 builds (#​1957)
  • Fixes to SourceLink integration (#​2019)
  • Add Uzbek Latin and Cyrillic languages (#​2013)
  • Updates to Danish language (#​2012)
Changes in 11.2.2
  • MemberNameValidatorSelector should make use of PropertyNameResolver when parsing expressions (#​2003)
Changes in 11.2.1
  • Fix test helper Only() not taking into account parent-level unmatched failures (#​1986)
Changes in 11.2.0
  • Resolve issue with unexpected results when with nested Include calls with the MemberNameValidatorSelector (#​1989)
  • Add a new Selector Factory for the Composite Selector (#​1988)
Changes in 11.1.1
  • Fix issue with incorrect rulesets being executed in a child validator when combined with ChildRules (#​1981)
  • Bulgarian translations of default messages (#​1973)
Changes in 11.1.0
  • Added a ToDictionary method to ValidationResult (particularly useful when working with Minimal APIs)-
  • MVC auto validation: Deprecated Implicit validation of child properties (#​1960)
  • MVC auto validation: Deprecated Implicit validation of root collection elements (#​1960)
  • Deprecated InjectValidator (#​1960)
  • Deprecated IValidatorFactory and ServiceProviderValidatorFactory (#​1961)
  • Introduce services.AddFluentValidationAutoValidation() and services.AddFluentValidationClientsideAdapters() as replacements for services.AddFluentValidation() (#​1965)
  • Remove duplication between sync and async validation in the internal model.
Changes in 11.0.3
  • Fix AsyncValidatorInvokedSynchronouslyException being incorrectly thrown when the top-level When method with RuleForEach, even when invoked asynchronously (#​1955)
Changes in 11.0.2
  • Child validator contexts now contain a reference to their parent context (#​1945)
  • Support deserialization of ValidationResult using System.Text.Json (#​1928)
Changes in 11.0.1
  • Fix regression in the Test Helper affecting the With* and Without* assertion methods (#​1937)
Changes in 11.0
  • Throw exceptions when async validator is invoked synchronously (#​1705)
  • Removal deprecated OnFailure/OnAnyFailure callbacks.
  • Remove deprecated RunDefaultMvcValidationAfterFluentValidationExecutes option from ASP.NET integration.
  • Remove deprecated Options property from RuleComponent.
  • Remove deprecated TestHelper methods.
  • Remove non-generic PropertyValidator backwards compatibility layer.
  • Add method Only() to the test helper asserting that no other validation errors were raised.
  • Ensure property covariance is properly handled throughout the internal model (#​1713)
Downloads

Binaries can be downloaded from nuget:

v11.9.0

Compare Source

Release notes

Please read the upgrade guide if you are moving from 10.x to 11.x

Note that the after 11.1.0 release, the FluentValidation.AspNetCore package has been moved to a separate repository and is now versioned and released separately. These release notes now only apply to the core FluentValidation package. For FluentValidation.AspNetCore release notes, please visit the FluentValidation.AspNetCore repository.

Changes in 11.9.0

  • Fix memory leak in NotEmptyValidator/EmptyValidator (#​2174)
  • Add more descriptive error messages if a rule throws a NullReferenceException (#​2152)
  • Add support for caching root parameter expressions (eg RuleFor(x => x)) (#​2168)
  • Prevent AddValidatorsFromAssemblyContaining from registering validators twice (#​2182)
  • Add builds for .net 8

Changes in 11.8.1

  • Fix unintentional behavioural changes in introduced in the previous release as part of #​2158

Changes in 11.8.0

  • Added AbstractValidator.OnRuleAdded to allow customization of rule instances after creation (#​2114)
  • Fix Serbian translation of LengthValidator (#​2147)
  • Fix chinese culture codes (#​2151)
  • Add Khmer translations (#​2155)
  • Various performance improvements (#​2158)
  • Fix ChildRules with class hierarchies (#​2165)

Changes in 11.7.1

  • Resolved issue with combining multiple ValidationResult instances where RuleSetsExecuted wasn't properly set on the combined result (#​2125)

Changes in 11.7.0

  • Add additional constructor for combining multiple ValidationResult instances (#​2125)
  • Add PropertyPath placeholder (#​2134)
  • Fix Brazilian Portuguese translation (#​2131)

Changes in 11.6.0

  • Add OnFailurecCreated callback in ValidatorOptions.Global (#​2120)
  • Fix typo in Russian localization (#​2102)
  • Add Tajik language (#​2108)
  • Fixed some typos in Validator Extension docblocks (#​2118)

Changes in 11.5.2

  • Resolve issue with ruleset propagation for multiple levels of child rules (#​2097)

Changes in 11.5.1

  • Deprecated the ability to disable the root model null check via overriding AbstractValidator.EnsureInstanceNotNull (See #​2069 for migration steps)
  • Deprecated the Transform and TransformAsync methods (See #​2072 for migration steps)

Changes in 11.5.0

  • MemberNameValidatorSelector now supports wildcard indexes in property paths (#​2056)
  • Added overload of TestValidateAsync that accepts a context (#​2052)
  • Minor optimization to regex validator (#​2035)
  • Added Kazakh translations (#​2036)
  • Added Catalan translations and updated Spanish translations (#​2050)
  • Updates to Uzbek Latin and Cyrillic translations (#​2040/#​2041/#​2045)
  • Updates to Italian translations (#​2039)
  • Updates to French translations (#​2065)

Changes in 11.4.0

  • Deprecate ScalePrecision validator and introduce PrecisionScale validator as its replacement (#​2030)

Changes in 11.3.0

  • Add a net7 build
  • Annotate string parameters with StringSyntaxAttribute.Regex in net7 builds (#​1957)
  • Fixes to SourceLink integration (#​2019)
  • Add Uzbek Latin and Cyrillic languages (#​2013)
  • Updates to Danish language (#​2012)

Changes in 11.2.2

  • MemberNameValidatorSelector should make use of PropertyNameResolver when parsing expressions (#​2003)

Changes in 11.2.1

  • Fix test helper Only() not taking into account parent-level unmatched failures (#​1986)

Changes in 11.2.0

  • Resolve issue with unexpected results when with nested Include calls with the MemberNameValidatorSelector (#​1989)
  • Add a new Selector Factory for the Composite Selector (#​1988)

Changes in 11.1.1

  • Fix issue with incorrect rulesets being executed in a child validator when combined with ChildRules (#​1981)
  • Bulgarian translations of default messages (#​1973)

Changes in 11.1.0

  • Added a ToDictionary method to ValidationResult (particularly useful when working with Minimal APIs)-
  • MVC

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Jan 9, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 894ff8b to f9edede Compare January 11, 2023 18:34
@renovate renovate bot changed the title Update dependency Pulumi.AzureNative to v1.91.0 Update all non-major dependencies Jan 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 602c13e to 5c402a8 Compare January 13, 2023 23:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b34bfb7 to 9264819 Compare January 27, 2023 23:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 5e39bcc to 116eb11 Compare February 14, 2023 21:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ce0dfbe to d3f0c74 Compare February 22, 2023 00:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a7a08db to 009d73f Compare February 27, 2023 20:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d4b653b to 1cecba1 Compare March 13, 2023 17:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 01a1750 to 9c41bda Compare March 19, 2023 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9c41bda to c55e240 Compare March 23, 2023 21:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2ac03c to 8a5cd1c Compare February 28, 2024 13:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8a5cd1c to 4e288ef Compare March 13, 2024 11:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 82a2254 to 8ec78f7 Compare April 17, 2024 14:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ec78f7 to e2fdf07 Compare April 23, 2024 13:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ec9cd8c to 2a4658d Compare May 14, 2024 19:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 69fb72b to dacb87b Compare May 22, 2024 18:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dacb87b to eee2c1a Compare May 29, 2024 22:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1cda5e0 to 1bdac9b Compare June 14, 2024 08:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f4c1b73 to cddc905 Compare July 1, 2024 19:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 84c3151 to 74679a5 Compare July 22, 2024 08:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 817bdde to 0b89a2b Compare September 13, 2024 02:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3b7f4d3 to 624dcb6 Compare September 20, 2024 12:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from af02592 to b129c3f Compare October 1, 2024 22:30
Copy link

qodo-merge-pro bot commented Oct 1, 2024

PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here.

CI Failure Feedback 🧐

Action: build-test-pull-request

Failed stage: Build, Test and Pack [❌]

Failure summary:

The action failed due to multiple obsolete errors in the code:

  • The Server class is obsolete and needs to be upgraded to
    azure-native:dbforpostgresql/v20220308preview:Server for compatibility.
  • The FirewallRule class is obsolete and needs to be upgraded to
    azure-native:dbforpostgresql/v20221108:FirewallRule for compatibility.
  • The Database class is obsolete and needs to be upgraded to
    azure-native:dbforpostgresql/v20230301preview:Database for compatibility.
    These errors occurred in
    the files:
  • PostgresFlexibleServerResource.cs and PostgresDatabaseResource.cs for both net6.0 and net7.0 target
    frameworks.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    442:  Restore
    443:  ========================================
    444:  Determining projects to restore...
    445:  Restored /home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj (in 2.93 sec).
    446:  ========================================
    447:  Build
    448:  ========================================
    449:  MSBuild version 17.7.6+77d58ec69 for .NET
    450:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(107,12): error CS0618: 'Server' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Server is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20220308preview:Server to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net6.0]
    451:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(72,42): error CS0618: 'FirewallRule' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:FirewallRule is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20221108:FirewallRule to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net6.0]
    452:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresDatabaseResource.cs(16,17): error CS0618: 'Database' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Database is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20230301preview:Database to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net6.0]
    453:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(107,12): error CS0618: 'Server' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Server is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20220308preview:Server to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net7.0]
    454:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(72,42): error CS0618: 'FirewallRule' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:FirewallRule is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20221108:FirewallRule to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net7.0]
    455:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresDatabaseResource.cs(16,17): error CS0618: 'Database' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Database is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20230301preview:Database to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net7.0]
    456:  Build FAILED.
    457:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(107,12): error CS0618: 'Server' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Server is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20220308preview:Server to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net6.0]
    458:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(72,42): error CS0618: 'FirewallRule' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:FirewallRule is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20221108:FirewallRule to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net6.0]
    459:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresDatabaseResource.cs(16,17): error CS0618: 'Database' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Database is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20230301preview:Database to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net6.0]
    460:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(107,12): error CS0618: 'Server' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Server is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20220308preview:Server to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net7.0]
    461:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresFlexibleServerResource.cs(72,42): error CS0618: 'FirewallRule' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:FirewallRule is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20221108:FirewallRule to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net7.0]
    462:  ##[error]/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/Resources/Azure/PostgreSql/Flexible/PostgresDatabaseResource.cs(16,17): error CS0618: 'Database' is obsolete: 'azure-native:dbforpostgresql/v20220120preview:Database is being removed in the next major version of this provider. Upgrade to at least azure-native:dbforpostgresql/v20230301preview:Database to guarantee forwards compatibility.' [/home/runner/work/SimCube.PulumiDeployments/SimCube.PulumiDeployments/src/SimCube.PulumiDeployments/SimCube.PulumiDeployments.csproj::TargetFramework=net7.0]
    463:  0 Warning(s)
    464:  6 Error(s)
    465:  Time Elapsed 00:00:07.55
    466:  �[41m�[37;1mAn error occurred when executing task '�[0m�[41;1m�[37;1mBuild�[0m�[41m�[37;1m'.�[0m
    467:  �[41m�[37;1mError: �[0m�[41;1m�[37;1m.NET CLI: Process returned an error (exit code 1).�[0m
    468:  ##[error]Process completed with exit code 1.
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    @renovate renovate bot force-pushed the renovate/all-minor-patch branch from b129c3f to 419c870 Compare October 16, 2024 19:00
    @renovate renovate bot force-pushed the renovate/all-minor-patch branch from 419c870 to 2f6ad6e Compare November 16, 2024 19:47
    @renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2f6ad6e to d16af1c Compare December 13, 2024 18:23
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    0 participants